home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / AECUR100.ARJ / PMENUOBJ.H < prev    next >
C/C++ Source or Header  |  1990-03-10  |  496b  |  28 lines

  1. /*------------------------------------------------------------
  2.  * 
  3.  * pmenuobj.h
  4.  * 
  5.  * Popup MENU OBJect
  6.  * 
  7.  * (c) 1989 j. alan eldridge
  8.  * 
  9.  *----------------------------------------------------------*/
  10.  
  11.  
  12. #ifndef __PMENUOBJ__
  13. #define __PMENUOBJ__
  14.  
  15. typedef struct {
  16.     WINDOW  *win;
  17.     char    **itemlist;
  18.     int     itemcnt,
  19.             curitem,
  20.             topitem,
  21.             id;
  22.     WINDOW  *box,
  23.             *save;
  24. } POPUP_MENU;
  25.  
  26. #endif  /* __PMENUOBJ__ */
  27.  
  28.